home *** CD-ROM | disk | FTP | other *** search
- /*
- * Filename: InfoMgr.m
- * Created : Sun Oct 20 20:38:59 1991
- * Author : Vince DeMarco
- * <vince@whatnxt.cuc.ab.ca>
- */
-
-
- /* Generated by Interface Builder */
-
- #import "InfoMgr.h"
- #import <appkit/Application.h>
- #import <appkit/Window.h>
-
- @implementation InfoMgr
-
- - info:sender
- {
- if (!infoPanel){
- [NXApp loadNibSection:"Info.nib" owner:self withNames:NO fromZone:[self zone]];
- }
- [infoPanel makeKeyAndOrderFront:sender];
- return self;
- }
-
- - help:sender
- {
- if (!helpPanel){
- [NXApp loadNibSection:"Info.nib" owner:self withNames:NO fromZone:[self zone]];
- }
- [helpPanel makeKeyAndOrderFront:sender];
- return self;
- }
-
- - copying:sender
- {
- if (!copyingPanel){
- [NXApp loadNibSection:"Info.nib" owner:self withNames:NO fromZone:[self zone]];
- }
- [copyingPanel makeKeyAndOrderFront:sender];
- return self;
- }
-
- /* InfoPanel Delegation Methods */
- - windowWillClose:sender
- {
- return self;
- }
-
- - windowDidBecomeKey:sender
- {
- return self;
- }
-
- @end
-